home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / make.AViiON < prev    next >
Text File  |  1991-02-15  |  1KB  |  75 lines

  1. # Installation dependent make variables for ericv on HERMES 
  2.  
  3. # full path of the ESPRIT environment
  4. ESPRITDIR = /home1/forfun
  5.  
  6. #  BDIR     : bin directory
  7. BDIR = $(ESPRITDIR)/binA
  8.  
  9. #  IDIR     : include directory
  10. IDIR = $(ESPRITDIR)/include
  11.  
  12. #  LDIR     : library directory
  13. LDIR = $(ESPRITDIR)/libA
  14.  
  15.  
  16. NFULLDS = $(ESPRITDIR)/ds/nfullgl.ds
  17. NKERNDS = $(ESPRITDIR)/ds/nkerngl.ds
  18.  
  19. #  HOSTNAME : name of installation machine.
  20. HOSTNAME=hermes
  21.  
  22. # SYS     : name of operating system or machine type
  23. #     BSD    For generic BSD systems
  24. #     AVIION    For generic DG_UX systems
  25. #     HPUX    For all HP-UX systems
  26. #     SUN    For all SUN systems
  27. #     APOLLO    For all Apollo systems
  28. SYS = AVIION
  29.  
  30. # CLIBLOC : required C libraries
  31. CLIBLOC =
  32.  
  33. LINTLIBLOC =
  34.  
  35. PASLIBLOC =
  36.  
  37. # CBADADR : address that will cause a core-dump if read or written.
  38. CBADADR = 0
  39.  
  40. SYSLINTFLAGS = -hpac
  41. SYSCFLAGS = 
  42. SYSCPROFFLAGS =
  43. SYSCDBUGFLAGS =
  44. SYSPFLAGS =
  45. OFLAG= -O
  46. # Collection of host dependent make rules.
  47.  
  48. ### libinstall ###
  49. # MODULE    - module to install
  50. libinstall:
  51.     cp $(MODULE) $(LDIR)/$(MODULE)
  52.  
  53. ### includeinstall ###
  54. # MODULE    - module to install
  55. includeinstall:
  56.     cp $(MODULE) $(IDIR)/$(MODULE)
  57.  
  58. ### maninstall ###
  59. # MAN        - manual page to install
  60. maninstall:
  61.     cp $(MAN) /usr/man/manl
  62.  
  63. ### bininstall ###
  64. # MODULE    - module to install
  65. bininstall:
  66.     cp $(MODULE) $(BDIR)/$(MODULE)
  67.     strip $(BDIR)/$(MODULE)
  68.  
  69. ### arlibinstall ###
  70. # MODULE    - module to install
  71. arlibinstall:
  72.     cp $(MODULE) $(LDIR)/$(MODULE)
  73.  
  74. LINK.c=$(CC)  ($(CFLAGS)
  75.